home *** CD-ROM | disk | FTP | other *** search
/ PC Home MegaDisk 20 / PC Home MegaDisk 1994-05 Issue 20.img / HIGHCS.EXE / HIGHC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-22  |  2.8 KB  |  58 lines

  1. /*  #include this file at the top of any program that uses the HIGHC.OBJ
  2.     function set.                               */
  3.  
  4. #define OK 0
  5. #define VGA_mem  (char *)0xA0000000  // The start seg/off of VGA memory
  6.  
  7. typedef struct {
  8.  
  9.    char lmb;              /* Left mouse button is currently down */
  10.    char rmb;              /* Right mouse button is currently down */
  11.    char lmr;              /* Left mouse button has been released since
  12.                              last call */
  13.    char rmr;              /* Right mouse button has been released since
  14.                              last call */
  15.    int mx;                /* X-axis position of mouse in pixels, 0 to 320 */
  16.    int my;                /* Y-axis position of mouse in pixels, 0 to 200 */
  17.    int px;                /* Previous X-axis position of mouse in pixels */
  18.    int py;                /* Previous Y-axis position of mouse in pixels */
  19. } MOUSE;
  20.  
  21.  
  22. /* This is the standard PCX header.  As I mentioned in article 2, most of
  23.    this stuff is useless to us, because we're only interested in 256-colour
  24.    files.                           */
  25.  
  26. typedef struct {
  27.         char PCX_id;         /* ALWAYS 0Ah (10 decimal), for some reason */
  28.         char version;        /* If this is not 5, you're not interested */
  29.         char encoding;       /* Ignore */
  30.         char bits_per_pixel; /* Either 1 or 8, or you're not interested */
  31.         int xmin, ymin;      /* The top-left co-ords of the original image */
  32.         int xmax, ymax;      /* The bottom-right co-ords of the original
  33.                                 image.  XMAX-XMIN=Height, YMAX-YMIN=Width.
  34.                                 BUT!!  You must add 1 to the result, because
  35.                                 PCX will store, for example, 0-319, which
  36.                                 is a total of 320 pixels.  Sorry: I didn't
  37.                                 design the bloody thing! */
  38.         int hscreen;         // If these values aren't 320 and 200, you aren't
  39.         int vscreen;         // interested in this file.  Throw it out.
  40.         char palette[48];    /* For 16-colour images.  Ignore it */
  41.         char filler1;        /* Ignore */
  42.         char colour_planes;  /* If "bits_per_pixel"=1, this must be 8.  If
  43.                                 it's not, you don't want it. */
  44.         int bytes_per_ln;    /* Always 320, or you aren't interested. */
  45.         int pal_type;        /* Ignore */
  46.         char filler2[58];    /* Ignore */
  47.         } PCXHDR;
  48.  
  49. MOUSE m;
  50. PCXHDR hdr;                  /* Define a PCX header structure called hdr */
  51. unsigned int width, depth;   /* ... of the image */
  52. unsigned int bytes, bits;
  53. char *palette;               /* Pointer to some memory to store our palette */
  54. char far *sbptr;             /* Pointer to the screen buffer */
  55.  
  56. char far *g_FPtr(char far *ptr, unsigned int l);
  57.  
  58.